e0c74b181944d96d62220ca75cd3b5d625f1b8ea,portal-ejb/src/com/liferay/portlet/workflow/service/impl/WorkflowComponentServiceImpl.java,WorkflowComponentServiceImpl,deploy,#String#,81

Before Change



			String content = url.getContent();

			String definitionId = WorkflowXMLUtil.parseString(
				content, "definitionId");

			WorkflowDefinitionServiceUtil.addDefinition(
				GetterUtil.getLong(definitionId), xml);

			return definitionId;
		}
		catch (Exception e) {
			throw new WorkflowComponentException(e);

After Change



			String content = url.getContent();

			return WorkflowXMLUtil.parseString(content, "definitionId");
		}
		catch (Exception e) {
			throw new WorkflowComponentException(e);